home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1995 June: Reference Library / Dev.CD Jun 95 / Dev.CD Jun 95.toast / What's New? / New System Software Extensions / QuickDraw 3D ß / Programming / SampleCode / Modeller ƒ / Modeller_errors.h < prev    next >
Encoding:
Text File  |  1995-03-06  |  337 b   |  20 lines  |  [TEXT/MPS ]

  1. // Modeller_errors.h
  2. //
  3. // Public interface to error function prototypes for the modeller application
  4. //
  5. // Modification History
  6. //
  7. //    11/26/94        nick        initial cut
  8.  
  9.  
  10. #ifndef _MODELLER_ERRORS_H_
  11. #define _MODELLER_ERRORS_H_
  12.  
  13. void MyErrorInit( void) ;
  14. void MyErrorExit( void) ;
  15. void MyError(
  16.     char     *fxnName, 
  17.     char     *string,
  18.     ...) ;
  19.  
  20. #endif